home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / amigae.jan.archive / 000024_crash!UNCA.EDU!JVANRIPER_Wed, 12 Jan 94 00:58:17 PST.msg < prev    next >
Text File  |  1994-02-17  |  1KB  |  32 lines

  1. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  2.       id <1kbf@bkhouse.cts.com>; Wed, 12 Jan 94 00:58:17 PST
  3. Received: from uncavx by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #18) id m0pJjbU-0000ThC; Tue, 11 Jan 94 05:57 PST
  5. Received: from UNCA.EDU by UNCA.EDU (PMDF V4.2-15 #5911) id
  6.  <01H7JTMRQKRG934U3S@UNCA.EDU>; Tue, 11 Jan 1994 08:56:29 EST
  7. Date: Tue, 11 Jan 1994 08:56:29 -0500 (EST)
  8. Message-id: <01H7JTMRQKRI934U3S@UNCA.EDU>
  9. Organization: University of North Carolina at Asheville
  10. X-VMS-To: IN%"AmigaE@bkhouse.cts.com"
  11. MIME-version: 1.0
  12. Content-type: TEXT/PLAIN; CHARSET=US-ASCII
  13. Content-transfer-encoding: 7BIT
  14. From: "Joseph E. Van_Riper III" <JVANRIPER@UNCA.EDU>
  15. To: AmigaE@bkhouse.cts.com
  16. Subject: Re: Converting numbers->strings
  17.  
  18.  
  19. You asked:
  20.  
  21. | Is there some way to get the string form of a number?  Thanks.
  22.  
  23. Yes, there IS a way.  In my own code, I used:
  24.  
  25. StringF(num,'\d',j-1)
  26.  
  27. Where 'num' becomes the buffer into which a string form of 'j-1' (a LONG value,
  28. formatted by '\d') is placed.  Hope that helps.
  29.  
  30. - Trey
  31.  
  32. (This example found in Quip.E, available in the aminet sites)